/* CTA Gradient Section - Pink/Orange Theme */
.cta-gradient-section {
  background: linear-gradient(120deg, #d726a7 0%, #a259f7 60%, #ff7a2f 100%);
  color: #fff;
  padding: 5rem 0 4rem 0;
  text-align: center;
  margin-top: 0;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-icon {
  font-size: 3.2rem;
  margin-bottom: 1.3rem;
  color: #fff;
  display: inline-block;
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #fff;
}
.cta-desc {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #fff;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-top: 0.2rem;
}
.cta-btn-primary {
  background: #fff;
  color: #d726a7;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.08);
}
.cta-btn-primary:hover {
  background: #ffe6f7;
  color: #ff7a2f;
}
.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn-outline:hover {
  background: #fff;
  color: #d726a7;
}
body {
  background: #fff;
}
/* Young Dreamers Grid and Card Styles */
.dreamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.dreamer-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.04);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.dreamer-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.13), 0 4px 16px 0 rgba(215,38,167,0.13);
  transform: translateY(-4px) scale(1.03);
}
.dreamer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f7f8ff;
  border: 3px solid;
  border-image: linear-gradient(120deg, #d726a7 0%, #a259f7 60%, #ff7a2f 100%) 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #23272a;
  margin-bottom: 1.1rem;
  position: relative;
}
.dreamer-star {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: #ffc700;
  font-size: 1.4rem;
  background: #fff;
  border-radius: 50%;
  padding: 0.3rem 0.4rem;
  box-shadow: 0 2px 8px 0 rgba(255,199,0,0.08);
}
.dreamer-name {
  font-weight: 700;
  color: #181c24;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.dreamer-badge {
  display: inline-block;
  background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 1.2rem;
  padding: 0.3rem 1.1rem;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.dreamer-desc {
  color: #444;
  font-size: 1.05rem;
  text-align: center;
}
/* Dream Section Pink/Orange Theme */
.dream-section-bg {
  background: linear-gradient(120deg, #ffe6f7 0%, #fff7f0 100%);
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
}
.dream-star {
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.dream-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #181c24;
}
.dream-title .dream-accent {
  background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.dream-desc {
  color: #444;
  font-size: 1.18rem;
  max-width: 800px;
  margin: 0 auto 2.8rem auto;
}
.dream-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.dream-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.04);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 300px;
  text-align: center;
}
.dream-card .dream-icon {
  font-size: 2.3rem;
  margin-bottom: 1.1rem;
  display: inline-block;
}
.dream-card-education .dream-icon {
  color: #2563eb;
}
.dream-card-community .dream-icon {
  color: #22c55e;
}
.dream-card-care .dream-icon {
  background: linear-gradient(90deg, #d726a7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.dream-card-title {
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  color: #181c24;
}
.dream-card-desc {
  color: #444;
  font-size: 1.05rem;
}
